@L

Category: Variables

Syntax:
@L $variable = value
@L ${text} = value
@L $arrayvar[key] = value

Assigns a value to a local variable or array value. Local variables are only visible in the routine where they were set, and they are deleted automatically when the routine exits. A local variable hides any global variable with the same name.

If the second syntax is used, text will be evaluated and used as a variable name.

Example:
For (@l $i = 1; $i <= 10; $i++)
  MessageBox $i
EndFor

@l $temparray[$key] = value

See also: -@L, @, @S


Next in "Variables": @S
Previous in "Variables": @
Next by name: @P
Previous by name: @E-
Up to all commands by name or commands and functions by category